summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorNikolay Korolev <nickvnuk@gmail.com>2020-05-16 12:40:00 +0200
committerNikolay Korolev <nickvnuk@gmail.com>2020-05-16 12:40:00 +0200
commit6556cb0db933ffa2d5e0ed092677d71d7b08726e (patch)
tree8215b0cc9170c387f504cf58a4c6bcb5cbc37f07 /src
parentminimal weather stuff + multiple bugfixes (diff)
parentremove some unneeded plane paths for the moment; also different exe icon (diff)
downloadre3-6556cb0db933ffa2d5e0ed092677d71d7b08726e.tar
re3-6556cb0db933ffa2d5e0ed092677d71d7b08726e.tar.gz
re3-6556cb0db933ffa2d5e0ed092677d71d7b08726e.tar.bz2
re3-6556cb0db933ffa2d5e0ed092677d71d7b08726e.tar.lz
re3-6556cb0db933ffa2d5e0ed092677d71d7b08726e.tar.xz
re3-6556cb0db933ffa2d5e0ed092677d71d7b08726e.tar.zst
re3-6556cb0db933ffa2d5e0ed092677d71d7b08726e.zip
Diffstat (limited to 'src')
-rw-r--r--src/skel/win/gta3.icobin2238 -> 0 bytes
-rw-r--r--src/skel/win/gtavc.icobin0 -> 3262 bytes
-rw-r--r--src/skel/win/win.rc2
-rw-r--r--src/vehicles/Plane.cpp2
4 files changed, 3 insertions, 1 deletions
diff --git a/src/skel/win/gta3.ico b/src/skel/win/gta3.ico
deleted file mode 100644
index 2017c811..00000000
--- a/src/skel/win/gta3.ico
+++ /dev/null
Binary files differ
diff --git a/src/skel/win/gtavc.ico b/src/skel/win/gtavc.ico
new file mode 100644
index 00000000..d253ff2c
--- /dev/null
+++ b/src/skel/win/gtavc.ico
Binary files differ
diff --git a/src/skel/win/win.rc b/src/skel/win/win.rc
index 379c473d..9b5aa305 100644
--- a/src/skel/win/win.rc
+++ b/src/skel/win/win.rc
@@ -42,6 +42,6 @@ END
// Icon with lowest ID value placed first to ensure application icon
// remains consistent on all systems.
-IDI_MAIN_ICON ICON DISCARDABLE "gta3.ico"
+IDI_MAIN_ICON ICON DISCARDABLE "gtavc.ico"
///////////////////////////////////////////////////////////////////////////// \ No newline at end of file
diff --git a/src/vehicles/Plane.cpp b/src/vehicles/Plane.cpp
index 39069364..8f32f12a 100644
--- a/src/vehicles/Plane.cpp
+++ b/src/vehicles/Plane.cpp
@@ -735,6 +735,7 @@ CPlane::InitPlanes(void)
TotalDurationOfFlightPath2 = TotalLengthOfFlightPath2/CRUISE_SPEED;
}
+/*
// Mission Cesna
if(pPath3Nodes == nil){
pPath3Nodes = LoadPath("data\\paths\\flight3.dat", NumPath3Nodes, TotalLengthOfFlightPath3, false);
@@ -746,6 +747,7 @@ CPlane::InitPlanes(void)
pPath4Nodes = LoadPath("data\\paths\\flight4.dat", NumPath4Nodes, TotalLengthOfFlightPath4, false);
TotalDurationOfFlightPath4 = TotalLengthOfFlightPath4/CRUISE_SPEED;
}
+*/
CStreaming::LoadAllRequestedModels(false);
CStreaming::RequestModel(MI_AIRTRAIN, 0);