summaryrefslogtreecommitdiff
path: root/win32
diff options
context:
space:
mode:
authorSND\weimingzhi_cp <SND\weimingzhi_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2011-01-12 02:51:29 +0000
committerSND\weimingzhi_cp <SND\weimingzhi_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2011-01-12 02:51:29 +0000
commit27e8b5744ddab50cc9ef50b6ee1f3a94010a8cea (patch)
treec38e3e5475e499b769368cb34129c70f1e2a36f8 /win32
parent9bbb363c552598dcec7d17c7e6386a6f405edcab (diff)
downloadpcsxr-27e8b5744ddab50cc9ef50b6ee1f3a94010a8cea.tar.gz
- Added -slowboot parameter.
- Load SBI file from patches/SLUS_xxx.xx.sbi instead. - Inlined the I-cache code for performance improvement. - Fixed endianness issue (not tested). git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@62024 e17a0e51-4ae3-4d35-97c3-1a29b211df97
Diffstat (limited to 'win32')
-rw-r--r--win32/gui/WndMain.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/win32/gui/WndMain.c b/win32/gui/WndMain.c
index 90f7fcb4..7d1360e4 100644
--- a/win32/gui/WndMain.c
+++ b/win32/gui/WndMain.c
@@ -208,6 +208,8 @@ int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine
}
} else if (strcmp(arg, "-psxout") == 0) {
Config.PsxOut = TRUE;
+ } else if (strcmp(arg, "-slowboot") == 0) {
+ Config.SlowBoot = TRUE;
} else if (strcmp(arg, "-help") == 0) {
MessageBox(gApp.hWnd, _(
"Usage: pcsx [options]\n"