From 0765b272aef169411df8fc1a17d4a5f28f76bf8a Mon Sep 17 00:00:00 2001 From: Eugene Sandulenko Date: Sat, 1 May 2004 23:46:23 +0000 Subject: [PATCH] Renamed files for consistency svn-id: r13725 --- saga/{sysinput.cpp => input.cpp} | 0 saga/module.mk | 4 ++-- saga/render.cpp | 2 +- saga/saga.cpp | 2 +- saga/{systimer.cpp => timer.cpp} | 2 +- saga/{systimer.h => timer.h} | 0 6 files changed, 5 insertions(+), 5 deletions(-) rename saga/{sysinput.cpp => input.cpp} (100%) rename saga/{systimer.cpp => timer.cpp} (99%) rename saga/{systimer.h => timer.h} (100%) diff --git a/saga/sysinput.cpp b/saga/input.cpp similarity index 100% rename from saga/sysinput.cpp rename to saga/input.cpp diff --git a/saga/module.mk b/saga/module.mk index aa28d277275..7fde955894e 100644 --- a/saga/module.mk +++ b/saga/module.mk @@ -39,8 +39,8 @@ MODULE_OBJS = \ saga/ys_binwrite.o \ saga/ys_dl_list.o \ saga/sysgfx.o \ - saga/sysinput.o \ - saga/systimer.o \ + saga/input.o \ + saga/timer.o \ saga/music.o \ saga/sound.o diff --git a/saga/render.cpp b/saga/render.cpp index 6cc49f9b4f7..50cfd0f6528 100644 --- a/saga/render.cpp +++ b/saga/render.cpp @@ -25,7 +25,7 @@ #include "saga.h" #include "reinherit.h" -#include "systimer.h" +#include "timer.h" #include "yslib.h" #include "actor_mod.h" diff --git a/saga/saga.cpp b/saga/saga.cpp index e8660e88eca..c8a360506b6 100644 --- a/saga/saga.cpp +++ b/saga/saga.cpp @@ -34,7 +34,7 @@ #include "reinherit.h" -#include "systimer.h" +#include "timer.h" #include "rscfile_mod.h" #include "render_mod.h" diff --git a/saga/systimer.cpp b/saga/timer.cpp similarity index 99% rename from saga/systimer.cpp rename to saga/timer.cpp index 65cc2545e83..a79d42f241d 100644 --- a/saga/systimer.cpp +++ b/saga/timer.cpp @@ -25,7 +25,7 @@ #include -#include "systimer.h" +#include "timer.h" namespace Saga { diff --git a/saga/systimer.h b/saga/timer.h similarity index 100% rename from saga/systimer.h rename to saga/timer.h