From f313c951fbe286e9a0f6ba1ea7cf6bbe03de4831 Mon Sep 17 00:00:00 2001 From: gunfight Date: Thu, 16 May 2002 11:18:08 +0000 Subject: [PATCH] Check in of Cyberstella 1.2.1 - Completely removed the built-in games - Renamed "Readme.txt" into "CyberstellaTodo.txt" and moved it into the root of the stella project. - Added a few initilal Cyberstella informations to changes.txt. The WIN32 version now joins this log. git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@103 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba --- stella/src/ui/cyberstella/CyberstellaView.cpp | 20 ++++++++----------- 1 file changed, 8 insertions(+), 12 deletions(-) diff --git a/stella/src/ui/cyberstella/CyberstellaView.cpp b/stella/src/ui/cyberstella/CyberstellaView.cpp index 94a3472f1..d006ed70c 100644 --- a/stella/src/ui/cyberstella/CyberstellaView.cpp +++ b/stella/src/ui/cyberstella/CyberstellaView.cpp @@ -214,25 +214,29 @@ LRESULT CCyberstellaView::displayNote(WPARAM wParam, LPARAM lParam) void CCyberstellaView::OnGunfight() { - playRom(IDG_GUNFIGHT); + MessageBox("To avoid probable GPL violations by including non-GPL games into this project, this function is currently disabled. We're working on a GPL conform solution though, so check back soon.", "Sorry, currently not available!", MB_OK); + //playRom(IDG_GUNFIGHT); //MessageBox("If you'd like to play Gunfight on a real VCS, you can order a cartridge for only $16\nfrom http://webpages.charter.net/hozervideo!", "Commercial Break", MB_OK); } void CCyberstellaView::OnJammed() { - playRom(IDG_JAMMED); + MessageBox("To avoid probable GPL violations by including non-GPL games into this project, this function is currently disabled. We're working on a GPL conform solution though, so check back soon.", "Sorry, currently not available!", MB_OK); + //playRom(IDG_JAMMED); //MessageBox("If you'd like to play Jammed on a real VCS, you can order a cartridge for only $16\nfrom http://webpages.charter.net/hozervideo!", "Commercial Break", MB_OK); } void CCyberstellaView::OnQb() { - playRom(IDG_QB); + MessageBox("To avoid probable GPL violations by including non-GPL games into this project, this function is currently disabled. We're working on a GPL conform solution though, so check back soon.", "Sorry, currently not available!", MB_OK); + //playRom(IDG_QB); //MessageBox("If you'd like to play Qb on a real VCS, you can order a cartridge for only $16\nfrom http://webpages.charter.net/hozervideo!", "Commercial Break", MB_OK); } void CCyberstellaView::OnThrust() { - playRom(IDG_THRUST); + MessageBox("To avoid probable GPL violations by including non-GPL games into this project, this function is currently disabled. We're working on a GPL conform solution though, so check back soon.", "Sorry, currently not available!", MB_OK); + //playRom(IDG_THRUST); //MessageBox("If you'd like to play Thrust on a real VCS, you can order a cartridge for only $25\nfrom http://webpages.charter.net/hozervideo!", "Commercial Break", MB_OK); } @@ -278,8 +282,6 @@ void CCyberstellaView::playRom(LONG gameID) { case IDG_GUNFIGHT: { - MessageBox("To avoid probable GPL violations by including non-GPL games into this project, this function is currently disabled. We're working on a GPL conform solution though, so check back soon.", "Sorry, currently not available!", MB_OK); - /*pszFileName = "Gunfight"; dwActualSize = sizeof gunfight; pImage = new BYTE[dwActualSize]; @@ -291,8 +293,6 @@ void CCyberstellaView::playRom(LONG gameID) } case IDG_JAMMED: { - MessageBox("To avoid probable GPL violations by including non-GPL games into this project, this function is currently disabled. We're working on a GPL conform solution though, so check back soon.", "Sorry, currently not available!", MB_OK); - /*pszFileName = "Jammed"; dwActualSize = sizeof jammed; pImage = new BYTE[dwActualSize]; @@ -304,8 +304,6 @@ void CCyberstellaView::playRom(LONG gameID) } case IDG_QB: { - MessageBox("To avoid probable GPL violations by including non-GPL games into this project, this function is currently disabled. We're working on a GPL conform solution though, so check back soon.", "Sorry, currently not available!", MB_OK); - /*pszFileName = "Qb"; dwActualSize = sizeof qb; pImage = new BYTE[dwActualSize]; @@ -317,8 +315,6 @@ void CCyberstellaView::playRom(LONG gameID) } case IDG_THRUST: { - MessageBox("To avoid probable GPL violations by including non-GPL games into this project, this function is currently disabled. We're working on a GPL conform solution though, so check back soon.", "Sorry, currently not available!", MB_OK); - /*pszFileName = "Thrust"; dwActualSize = sizeof thrust; pImage = new BYTE[dwActualSize];