You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A couple of change to declarations to remove the unsigned/signed comparison warnings on the demo or blank application!
Lines 2709, 2721, 2733 int -> std::size_t
Line 3533 size_t -> int32_t
Line 3611 has nTextEntryCursor < sTextEntryString.size() so maybe static_caststd::size_t(nTextEntryCursor) < sTextEntryString.size()? This also seems to add several hundred FPS on the blank app!
The text was updated successfully, but these errors were encountered:
A couple of change to declarations to remove the unsigned/signed comparison warnings on the demo or blank application!
Lines 2709, 2721, 2733 int -> std::size_t
Line 3533 size_t -> int32_t
Line 3611 has nTextEntryCursor < sTextEntryString.size() so maybe static_caststd::size_t(nTextEntryCursor) < sTextEntryString.size()? This also seems to add several hundred FPS on the blank app!
The text was updated successfully, but these errors were encountered: