mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
Set overflow checks to 'false' for release builds in order to bandaid fix recent master error
This commit is contained in:
parent
d374e8e673
commit
d0b7891a34
@ -14,7 +14,7 @@ members = [
|
|||||||
# default profile for devs, fast to compile, okay enough to run, no debug information
|
# default profile for devs, fast to compile, okay enough to run, no debug information
|
||||||
[profile.dev]
|
[profile.dev]
|
||||||
opt-level = 2
|
opt-level = 2
|
||||||
overflow-checks = false
|
overflow-checks = true
|
||||||
debug-assertions = true
|
debug-assertions = true
|
||||||
panic = "abort"
|
panic = "abort"
|
||||||
debug = false
|
debug = false
|
||||||
@ -46,10 +46,10 @@ debug = true
|
|||||||
|
|
||||||
# this profil is used for veloren releases, compile time doesn't matter
|
# this profil is used for veloren releases, compile time doesn't matter
|
||||||
# we need stacktraces, light debug information, as much checks as possible
|
# we need stacktraces, light debug information, as much checks as possible
|
||||||
# i would like to put it in a seperate `official_release` target, but that doesnt share caches with `cargo test` and `cargo bench`
|
# I would like to put it in a seperate `official_release` target, but that doesnt share caches with `cargo test` and `cargo bench`
|
||||||
[profile.release]
|
[profile.release]
|
||||||
opt-level = 3
|
opt-level = 3
|
||||||
overflow-checks = true
|
overflow-checks = false
|
||||||
debug-assertions = false
|
debug-assertions = false
|
||||||
lto = true
|
lto = true
|
||||||
debug = false
|
debug = false
|
||||||
|
BIN
assets/voxygen/element/buttons/indicator_mmap.vox
(Stored with Git LFS)
BIN
assets/voxygen/element/buttons/indicator_mmap.vox
(Stored with Git LFS)
Binary file not shown.
@ -59,7 +59,6 @@ image_ids! {
|
|||||||
// MiniMap
|
// MiniMap
|
||||||
mmap_frame: "voxygen.element.frames.mmap",
|
mmap_frame: "voxygen.element.frames.mmap",
|
||||||
mmap_frame_closed: "voxygen.element.frames.mmap_closed",
|
mmap_frame_closed: "voxygen.element.frames.mmap_closed",
|
||||||
indicator_mmap: "voxygen.element.buttons.indicator_mmap",
|
|
||||||
|
|
||||||
// Missing: Buff Frame Animation .gif ?! we could do animation in ui.maintain, or in shader?
|
// Missing: Buff Frame Animation .gif ?! we could do animation in ui.maintain, or in shader?
|
||||||
window_frame: "voxygen.element.frames.window2",
|
window_frame: "voxygen.element.frames.window2",
|
||||||
@ -122,6 +121,7 @@ image_ids! {
|
|||||||
|
|
||||||
// Map
|
// Map
|
||||||
map_indicator: "voxygen.element.buttons.map_indicator",
|
map_indicator: "voxygen.element.buttons.map_indicator",
|
||||||
|
indicator_mmap: "voxygen.element.buttons.indicator_mmap",
|
||||||
|
|
||||||
// Crosshair
|
// Crosshair
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user