Skip to content

Commit

Permalink
removed beta from version
Browse files Browse the repository at this point in the history
  • Loading branch information
elect86 committed May 4, 2019
1 parent fa01531 commit 641bd4b
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/main/kotlin/imgui/imgui.kt
Original file line number Diff line number Diff line change
Expand Up @@ -111,12 +111,11 @@ object ImGui :

// Version
val build = 0
val beta = 0
/** get the compiled version string e.g. "1.23" (essentially the compiled value for IMGUI_VERSION) */
val version = "1.69.$build-$beta"
val version = "1.69.$build"
/** Integer encoded as XYYZZ for use in #if preprocessor conditionals.
Work in progress versions typically starts at XYY99 then bounce up to XYY00, XYY01 etc. when release tagging happens) */
val versionNum = 16900 + build + beta / 10f
val versionNum = 16900 + build
}

var ptrIndices = 0
Expand Down

0 comments on commit 641bd4b

Please sign in to comment.