release v0.6.3
This commit is contained in:
parent
0f0cccc2b6
commit
f28dcec683
20 changed files with 76 additions and 51 deletions
|
|
@ -42,6 +42,12 @@ typedef HRESULT (WINAPI *SPDA)(PROCESS_DPI_AWARENESS);
|
|||
struct sigaction termsa;
|
||||
#endif
|
||||
|
||||
#ifdef SUPPORT_XP
|
||||
#define TUT_INTRO_PLAYED true
|
||||
#else
|
||||
#define TUT_INTRO_PLAYED false
|
||||
#endif
|
||||
|
||||
#include "cli/cli.h"
|
||||
|
||||
#ifdef HAVE_GUI
|
||||
|
|
@ -582,7 +588,7 @@ int main(int argc, char** argv) {
|
|||
e.setAudio(DIV_AUDIO_DUMMY);
|
||||
}
|
||||
|
||||
if (!fileName.empty() && ((!e.getConfBool("tutIntroPlayed",false)) || e.getConfInt("alwaysPlayIntro",0)!=3 || consoleMode || benchMode || infoMode || outName!="" || vgmOutName!="" || cmdOutName!="")) {
|
||||
if (!fileName.empty() && ((!e.getConfBool("tutIntroPlayed",TUT_INTRO_PLAYED)) || e.getConfInt("alwaysPlayIntro",0)!=3 || consoleMode || benchMode || infoMode || outName!="" || vgmOutName!="" || cmdOutName!="")) {
|
||||
logI("loading module...");
|
||||
FILE* f=ps_fopen(fileName.c_str(),"rb");
|
||||
if (f==NULL) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue