diff options
| author | TakaRikka <38417346+TakaRikka@users.noreply.github.com> | 2026-07-05 10:34:40 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-07-05 13:34:40 -0400 |
| commit | d3c642c5d39902875ff8dc7278ef012c7dd3dd2a (patch) | |
| tree | 6c2d09bc7d146c0b3cb0be7ac9677164ca03d190 /src/d/d_file_select.cpp | |
| parent | a7a5b5d6364e06e439d53a095ef6fd1ef25d7a68 (diff) | |
d_menu_save mostly done (#1103)
Diffstat (limited to 'src/d/d_file_select.cpp')
| -rw-r--r-- | src/d/d_file_select.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/d/d_file_select.cpp b/src/d/d_file_select.cpp index 533cd5ad..143ec0cf 100644 --- a/src/d/d_file_select.cpp +++ b/src/d/d_file_select.cpp @@ -184,9 +184,9 @@ void dFile_select_c::_move() { (this->*DataSelProc[field_0x392b])(); #else #if VERSION <= VERSION_JPN - if(g_mDoMemCd_control.field_0x165A == 1 && field_0x3941 == 0) + if(g_mDoMemCd_control.mProbeStat == 1 && field_0x3941 == 0) #else - if((g_mDoMemCd_control.field_0x165A == 0 || g_mDoMemCd_control.field_0x165A == 1) && field_0x3941 == 0) + if((g_mDoMemCd_control.mProbeStat == 0 || g_mDoMemCd_control.mProbeStat == 1) && field_0x3941 == 0) #endif { field_0x392e = 1; @@ -200,7 +200,7 @@ void dFile_select_c::_move() { (this->*DataSelProc[field_0x392b])(); } - g_mDoMemCd_control.field_0x165A = 2; + g_mDoMemCd_control.mProbeStat = 2; #endif } @@ -3637,7 +3637,7 @@ int dFile_select_c::ExCardCheck() { return 1; } - if(dComIfGs_getNoFile() == 1) { + if(dComIfGs_getNewFile() == 1) { return 0; } @@ -3645,7 +3645,7 @@ int dFile_select_c::ExCardCheck() { return 2; } - if (dComIfGs_getNewFile()) { + if (dComIfGs_getNoFile()) { return 2; } |
