Skip to content

Commit 30a9fb2

Browse files
authored
Merge pull request Aloshi#507 from c0d3h4x0r/master
Fixes for issues Aloshi#503 and Aloshi#505.
2 parents bf02819 + 8c4c024 commit 30a9fb2

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

es-app/src/PlatformId.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,8 @@ namespace PlatformIds
6161
"psvita",
6262
"psp", // playstation portable
6363
"snes", // super nintendo entertainment system
64-
"pcengine", // turbografx-16/pcengine
64+
"pcengine", // (aka turbografx-16) HuCards only
65+
"pcenginecd", // (aka turbografx-16) CD-ROMs only
6566
"wonderswan",
6667
"wonderswancolor",
6768
"zxspectrum",

es-app/src/PlatformId.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,8 @@ namespace PlatformIds
6262
PLAYSTATION_VITA,
6363
PLAYSTATION_PORTABLE,
6464
SUPER_NINTENDO,
65-
TURBOGRAFX_16, // (also PC Engine)
65+
TURBOGRAFX_16, // (aka PC Engine) HuCards only
66+
TURBOGRAFX_CD, // (aka PC Engine) CD-ROMs only
6667
WONDERSWAN,
6768
WONDERSWAN_COLOR,
6869
ZX_SPECTRUM,

es-app/src/guis/GuiMetaDataEd.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ GuiMetaDataEd::GuiMetaDataEd(Window* window, MetaDataList* md, const std::vector
148148
if(mDeleteFunc)
149149
{
150150
auto deleteFileAndSelf = [&] { mDeleteFunc(); delete this; };
151-
auto deleteBtnFunc = [this, deleteFileAndSelf] { mWindow->pushGui(new GuiMsgBox(mWindow, "THIS WILL DELETE A FILE!\nARE YOU SURE?", "YES", deleteFileAndSelf, "NO", nullptr)); };
151+
auto deleteBtnFunc = [this, deleteFileAndSelf] { mWindow->pushGui(new GuiMsgBox(mWindow, "THIS WILL DELETE THE ACTUAL GAME FILE(S)!\nARE YOU SURE?", "YES", deleteFileAndSelf, "NO", nullptr)); };
152152
buttons.push_back(std::make_shared<ButtonComponent>(mWindow, "DELETE", "delete", deleteBtnFunc));
153153
}
154154

es-app/src/scrapers/GamesDBScraper.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,8 @@ const std::map<PlatformId, const char*> gamesdb_platformid_map {
6464
{ PLAYSTATION_VITA, "Sony Playstation Vita" },
6565
{ PLAYSTATION_PORTABLE, "Sony Playstation Portable" },
6666
{ SUPER_NINTENDO, "Super Nintendo (SNES)" },
67-
{ TURBOGRAFX_16, "TurboGrafx 16" },
67+
{ TURBOGRAFX_16, "TurboGrafx 16" }, // HuCards only
68+
{ TURBOGRAFX_CD, "TurboGrafx CD" }, // CD-ROMs only
6869
{ WONDERSWAN, "WonderSwan" },
6970
{ WONDERSWAN_COLOR, "WonderSwan Color" },
7071
{ ZX_SPECTRUM, "Sinclair ZX Spectrum" },

0 commit comments

Comments
 (0)