summaryrefslogtreecommitdiffhomepage
path: root/Stars45
diff options
context:
space:
mode:
authorAki <please@ignore.pl>2021-10-02 16:19:10 +0200
committerAki <please@ignore.pl>2021-10-02 16:19:10 +0200
commitbefb8be391543f4fadcc4f49aa48d219368e25a9 (patch)
tree59b98e9738c2430ba9057dd0edf6d2cc14b3e2cd /Stars45
parent41b26fc450b60830ad3a9ed65941e51193d65e99 (diff)
downloadstarshatter-befb8be391543f4fadcc4f49aa48d219368e25a9.zip
starshatter-befb8be391543f4fadcc4f49aa48d219368e25a9.tar.gz
starshatter-befb8be391543f4fadcc4f49aa48d219368e25a9.tar.bz2
Replaced min max macros with std ones
Diffstat (limited to 'Stars45')
-rw-r--r--Stars45/ComboList.cpp6
-rw-r--r--Stars45/Drive.cpp6
-rw-r--r--Stars45/ExceptionHandler.cpp5
3 files changed, 14 insertions, 3 deletions
diff --git a/Stars45/ComboList.cpp b/Stars45/ComboList.cpp
index 4bf35cc..d070b9f 100644
--- a/Stars45/ComboList.cpp
+++ b/Stars45/ComboList.cpp
@@ -36,6 +36,10 @@
Drop-down list of Buttons class
*/
+#define NOMINMAX
+
+#include <algorithm>
+
#include "MemDebug.h"
#include "ComboList.h"
#include "ComboBox.h"
@@ -168,7 +172,7 @@ ComboList::Draw()
// opening:
if (scrolling > 0) {
- int limit = min(items.size(), max_entries);
+ int limit = std::min(items.size(), max_entries);
if (scroll < limit) {
if (limit > 6)
diff --git a/Stars45/Drive.cpp b/Stars45/Drive.cpp
index 8cf6dd0..570721d 100644
--- a/Stars45/Drive.cpp
+++ b/Stars45/Drive.cpp
@@ -36,6 +36,10 @@
Weapon class
*/
+#define NOMINMAX
+
+#include <algorithm>
+
#include "MemDebug.h"
#include "Drive.h"
#include "Power.h"
@@ -355,7 +359,7 @@ Drive::GetRequest(double seconds) const
{
if (!power_on) return 0;
- double t_factor = max(throttle + 0.5 * augmenter_throttle, 0.3);
+ double t_factor = std::max(throttle + 0.5 * augmenter_throttle, 0.3);
return t_factor * power_level * sink_rate * seconds;
}
diff --git a/Stars45/ExceptionHandler.cpp b/Stars45/ExceptionHandler.cpp
index 17519be..6233b7a 100644
--- a/Stars45/ExceptionHandler.cpp
+++ b/Stars45/ExceptionHandler.cpp
@@ -32,6 +32,9 @@
*/
+#define NOMINMAX
+
+#include <algorithm>
#include <windows.h>
#include <imagehlp.h>
@@ -265,7 +268,7 @@ ExceptionHandler::GetLogicalAddress(void* addr, char* mod_name, int len, DWORD&
for (unsigned i = 0; i < pNtHdr->FileHeader.NumberOfSections; i++, pSection++ ) {
DWORD sectionStart = pSection->VirtualAddress;
DWORD sectionEnd = sectionStart
- + max(pSection->SizeOfRawData, pSection->Misc.VirtualSize);
+ + std::max(pSection->SizeOfRawData, pSection->Misc.VirtualSize);
// Is the address in this section???
if ((rva >= sectionStart) && (rva <= sectionEnd)) {