forked from github/server
MSVC doesn't like to do integer->char conversions.
This commit is contained in:
parent
baf3275eba
commit
d851554ebe
|
@ -94,7 +94,8 @@ enum {
|
|||
RCO_TRADEHERB,
|
||||
};
|
||||
|
||||
static void rc_setoption(race *rc, int key, const char *value) {
|
||||
static void rc_setoption(race *rc, int k, const char *value) {
|
||||
unsigned char key = (unsigned char)k;
|
||||
int i;
|
||||
variant *v = NULL;
|
||||
if (!rc->options) {
|
||||
|
|
Loading…
Reference in New Issue