Adamcake / Bolt

An alternative launcher for your favourite MMO
GNU Affero General Public License v3.0
122 stars 18 forks source link

Use stdint int64_t instead of int64 #14

Closed Jertzukka closed 5 months ago

Jertzukka commented 5 months ago

As of https://github.com/chromiumembedded/cef/commit/e53bff712ad31494787977104818adc4d609a887 (Jun 1, 2023) cef_basictypes.h is removed which defines int64, so it will refuse to build on a newer CEF version. This PR switches the existing int64 occurences to int64_t.

Adamcake commented 5 months ago

Thanks