diff --git a/Makefile b/Makefile index deb60c97..6999f2fd 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,7 @@ endif REMOTE=192.168.2.6 REMOTEUSER=sortie REMOTECOPYDIR:=/home/$(REMOTEUSER)/Desktop/MaxsiOS -MODULES=libmaxsi hello pong mkinitrd utils sortix +MODULES=libmaxsi hello games mkinitrd utils sortix VERSION=0.4 DEBNAME:=sortix_$(VERSION)_$(CPU) diff --git a/pong/.gitignore b/games/.gitignore similarity index 100% rename from pong/.gitignore rename to games/.gitignore diff --git a/pong/Makefile b/games/Makefile similarity index 100% rename from pong/Makefile rename to games/Makefile diff --git a/pong/pong.cpp b/games/pong.cpp similarity index 98% rename from pong/pong.cpp rename to games/pong.cpp index 49030f22..72cea61d 100644 --- a/pong/pong.cpp +++ b/games/pong.cpp @@ -50,7 +50,7 @@ int Init() frame = System::VGA::CreateFrame(); if ( frame == NULL ) { - StdOut::Print("Could not create VGA frame\n"); + Print("Could not create VGA frame\n"); return -1; }