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,
|
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;
|
int i;
|
||||||
variant *v = NULL;
|
variant *v = NULL;
|
||||||
if (!rc->options) {
|
if (!rc->options) {
|
||||||
|
|
Loading…
Reference in New Issue