Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试在 Xcode 上使用 allegro,在遵循教程之后,我收到了这个警告“隐式转换失去整数精度”。 我相信由于此警告,我无法使游戏全屏显示,也无法更改屏幕大小。我也无法创建图像的位图
我将如何解决这个问题?我无法对其进行任何更改,因为我根本没有权限!
int res = lres >> 16; ^ implicit conversion loses integer precision
请帮帮我
尝试
NSInteger res = lres >> 16;