From b39a5700cc1a4bca57c4db0ac1f7a4aba4185cbb Mon Sep 17 00:00:00 2001 From: Jonas 'Sortie' Termansen Date: Mon, 29 Aug 2011 00:09:10 +0200 Subject: [PATCH] Removed pong/ to games/ as it will soon store multiple games. --- Makefile | 2 +- {pong => games}/.gitignore | 0 {pong => games}/Makefile | 0 {pong => games}/pong.cpp | 2 +- 4 files changed, 2 insertions(+), 2 deletions(-) rename {pong => games}/.gitignore (100%) rename {pong => games}/Makefile (100%) rename {pong => games}/pong.cpp (98%) 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; }