Changeset - r1341:0d615430303d
[Not reviewed]
master
0 5 0
darkvater - 20 years ago 2005-02-07 19:45:08
darkvater@openttd.org
(svn r1845) - Revert r1835 since it totally screws network compiling
- Fix: fix some VS.NET warnings
- Add missing file to VS.NET project file
5 files changed with 12 insertions and 4 deletions:
0 comments (0 inline, 0 general)
misc_gui.c
Show inline comments
 
@@ -15,6 +15,11 @@
 
#include "sound.h"
 
#include "network.h"
 

	
 
// Windows stuff for Clipboard
 
#if defined(WIN32)
 
#include <windows.h>
 
#endif
 

	
 
#include "hal.h" // for file list
 

	
 
bool _query_string_active;
 
@@ -700,7 +705,7 @@ static void DrawStationCoverageText(cons
 

	
 
	if (b == &_userstring[3]) {
 
		b[0] = 0x81;
 
		b[1] = STR_00D0_NOTHING;
 
		b[1] = (char)STR_00D0_NOTHING;
 
		b[2] = STR_00D0_NOTHING >> 8;
 
		b[3] = 0;
 
	} else {
network.h
Show inline comments
 
#ifndef NETWORK_H
 
#define NETWORK_H
 

	
 
#include "network_core.h"
 
#define NOREV_STRING "norev000"
 

	
 
#ifdef ENABLE_NETWORK
network_data.h
Show inline comments
 
@@ -3,7 +3,6 @@
 

	
 
#include "ttd.h"
 
#include "network.h"
 
#include "network_core.h"
 

	
 
// Is the network enabled?
 
#ifdef ENABLE_NETWORK
station_gui.c
Show inline comments
 
@@ -420,7 +420,7 @@ static void DrawStationViewWindow(Window
 

	
 
		if (b == &_userstring[3]) {
 
			b[0] = 0x81;
 
			b[1] = STR_00D0_NOTHING;
 
			b[1] = (char)STR_00D0_NOTHING;
 
			b[2] = STR_00D0_NOTHING >> 8;
 
			b[3] = 0;
 
		} else {
ttd.vcproj
Show inline comments
 
@@ -314,7 +314,7 @@
 
			</File>
 
			<File
 
				RelativePath=".\dedicated.c">
 
			</File>				
 
			</File>
 
			<File
 
				RelativePath=".\depot.c">
 
			</File>
 
@@ -862,6 +862,9 @@
 
				</FileConfiguration>
 
			</File>
 
			<File
 
				RelativePath=".\string.c">
 
			</File>
 
			<File
 
				RelativePath="strings.c">
 
				<FileConfiguration
 
					Name="Release|Win32">
0 comments (0 inline, 0 general)