25.07.2011, 23:41
Hello, I found bug..
Log:
In 0.3c R2 and older %b works.
Код:
public OnGameModeInit() { new test = 0, test2 = 122, test3 = 0b101011, tmp[16]; printf("test: %d | %b | %x", test, test, test); printf("test2: %d | %b | %x", test2, test2, test2); printf("test3: %d | %b | %x", test3, test3, test3); format(tmp, 16, "Output: %b %b %b", test, test2, test3); print(tmp); }
Код:
[01:39:13] test: 0 | b | 0 [01:39:13] test2: 122 | b | 7A [01:39:13] test3: 43 | b | 2B [01:39:13] Output: b b b