We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa01531 commit 641bd4bCopy full SHA for 641bd4b
src/main/kotlin/imgui/imgui.kt
@@ -111,12 +111,11 @@ object ImGui :
111
112
// Version
113
val build = 0
114
- val beta = 0
115
/** get the compiled version string e.g. "1.23" (essentially the compiled value for IMGUI_VERSION) */
116
- val version = "1.69.$build-$beta"
+ val version = "1.69.$build"
117
/** Integer encoded as XYYZZ for use in #if preprocessor conditionals.
118
Work in progress versions typically starts at XYY99 then bounce up to XYY00, XYY01 etc. when release tagging happens) */
119
- val versionNum = 16900 + build + beta / 10f
+ val versionNum = 16900 + build
120
}
121
122
var ptrIndices = 0
0 commit comments