summaryrefslogtreecommitdiff
path: root/games/apricots/files/patch-apricots_all.cpp
blob: 78fd8236158e4b5231c28dd9c6df0c7c130da93f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
--- apricots/all.cpp.orig	2021-02-12 23:45:58 UTC
+++ apricots/all.cpp
@@ -18,7 +18,7 @@ int wrap(int n, int min, int max) { return ((((n - min
 
 // Sign function
 
-inline int sign(int n) { return (0 < n) - (n < 0); }
+int sign(int n) { return (0 < n) - (n < 0); }
 
 // Error message for switch statements that shouldn't ever get to default