mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 05:19:56 +00:00
Buildfix for Qt, Qt5, Windows on Qt.
This commit is contained in:
parent
f8e386995f
commit
8de3d882a1
@ -120,7 +120,7 @@ static void StripTailDirSlashes(std::wstring &fname)
|
||||
if (i == 2 && fname[1] == ':' && fname[2] == '\\')
|
||||
return;
|
||||
|
||||
while (wcschr(_T(DIR_SEP_CHRS), fname[i]))
|
||||
while (wcschr((const wchar_t*)_T(DIR_SEP_CHRS), fname[i]))
|
||||
fname[i--] = '\0';
|
||||
}
|
||||
return;
|
||||
|
@ -375,7 +375,7 @@ void MainWindow::on_action_DebugSaveMapFile_triggered()
|
||||
|
||||
void MainWindow::on_action_DebugResetSymbolTable_triggered()
|
||||
{
|
||||
symbolMap.ResetSymbolMap();
|
||||
symbolMap.Clear();
|
||||
notifyMapsLoaded();
|
||||
}
|
||||
|
||||
|
2
native
2
native
@ -1 +1 @@
|
||||
Subproject commit 6b48226f898382cebf89901977940a980502a119
|
||||
Subproject commit 644b7816871673e6b9e9f441c2791f1bbe8e2cc5
|
Loading…
Reference in New Issue
Block a user