diff --git a/olcCodeJam2023Entry/Scenario.cpp b/olcCodeJam2023Entry/Scenario.cpp index ed6c8c9..983fc9a 100644 --- a/olcCodeJam2023Entry/Scenario.cpp +++ b/olcCodeJam2023Entry/Scenario.cpp @@ -785,13 +785,13 @@ void Stage7::Update(){ switch(state){ case 0:{ flags.playerInControl=false; - DisplayBox("I see you have a few new tricks up your sleeve, Hacker."); + DisplayBox("I see you have a few new tricks up your sleeve, Hacker.",true); if(box.bPressed){ state=1; } }break; case 1:{ - DisplayBox("Don't think it'll be that easy to get through this one..."); + DisplayBox("Don't think it'll be that easy to get through this one...",true); if(box.bPressed){ state=2; flags.playerInControl=true; @@ -819,7 +819,7 @@ void Stage8::Start(){ void Stage8::Update(){ switch(state){ case 0:{ - DisplayBox("You need to cease all operations, you are causing more harm than good."); + DisplayBox("You need to cease all operations, you are causing more harm than good.",true); if(box.bPressed){ state=1; flags.playerInControl=true; diff --git a/olcCodeJam2023Entry/pge.wasm b/olcCodeJam2023Entry/pge.wasm index 8736b67..8018091 100644 Binary files a/olcCodeJam2023Entry/pge.wasm and b/olcCodeJam2023Entry/pge.wasm differ