gemrb: Infinity Engine emulator
The branch master has been updated
via 4df068f9a91757bc6cbd803d28566efa9091cdff (commit)
Summary of changes:
gemrb/includes/logging.h | 6 ------
1 files changed, 0 insertions(+), 6 deletions(-)
from 1625d4567f87f81e34b0b740c96884d5a1328e2b (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://gemrb.git.sourceforge.net/git/gitweb.cgi?p=gemrb/gemrb;a=commitdiff;h=4df068f9a91757bc6cbd803d28566efa9091cdff
commit 4df068f9a91757bc6cbd803d28566efa9091cdff
Author: Tom Prince <tom.prince@...>
Date: Thu Aug 19 10:22:32 2010 -0600
logging: Remove unused gotoxy macro.
This was only ever used in the (now removed) config file generator.
Signed-off-by: Tom Prince <tom.prince@...>
diff --git a/gemrb/includes/logging.h b/gemrb/includes/logging.h
index 9206598..9836fee 100644
--- a/gemrb/includes/logging.h
+++ b/gemrb/includes/logging.h
@@ -54,11 +54,6 @@ extern GEM_EXPORT HANDLE hConsole;
#define LIGHT_CYAN (CYAN | FOREGROUND_INTENSITY)
#define LIGHT_WHITE (WHITE | FOREGROUND_INTENSITY)
#define DEFAULT WHITE
-#define gotoxy(x,y) \
- { \
- COORD coord = {x,y}; \
- SetConsoleCursorPosition(hConsole, coord); \
- }
#else //WIN32
# include <config.h>
@@ -83,7 +78,6 @@ extern GEM_EXPORT HANDLE hConsole;
#define LIGHT_MAGENTA printf("\033[1m\033[35;40m");
#define LIGHT_CYAN printf("\033[1m\033[36;40m");
#define LIGHT_WHITE printf("\033[1m\033[37;40m");
-#define gotoxy(x,y) printf("\033[%d;%dH", y, x)
#endif //WIN32
#define printBracket(status, color) textcolor(WHITE); printf("["); textcolor(color); printf("%s", status); textcolor(WHITE); printf("]")
-----------------------------------------------------------------------
This is an automated email from the git hooks/post-receive script.
--
gemrb: Infinity Engine emulator
|